home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_VC80.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  4.5 KB  |  176 lines

  1. ;
  2. ;    VisiCalc Pop-up Menu Configuration
  3. ;
  4. Comment     ("Configured for VisiCalc")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (13, 8)     ; (Xinc, Yinc)
  10. Hysteresis    (1, 1)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (Yes)        ; Menu is in a fixed position
  13. MenuCenter    (0, 24)     ; (Col, Row) of menu center
  14. EnableBeep    (Yes)        ; Beeps if wrong button pressed with menu up
  15.  
  16. ;
  17. ;    Cursor Definitions
  18. ;
  19. ArrowKeys: Cursor
  20. (
  21.     Left    ([Left])
  22.     Right    ([Right])
  23.     Up    ([Up])
  24.     Down    ([Down])
  25. )
  26.  
  27. ;
  28. ;    Button Definitions
  29. ;
  30. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  31. LBC:    Button    (Menu(Calc))        ; Left button, Calc Menu
  32. LBF:    Button    (Menu(File))        ; Left button, File Menu
  33. MB:    Button    (Keys([Enter]))     ; Middle button
  34. RB:    Button    (Keys([Backspace]))    ; Right button
  35.  
  36. ;
  37. ;    Menu Definitions
  38. ;
  39. Main: Menu
  40. (
  41.     Title    ("Main")
  42.     Item    ("Replicate",           Keys("/R"))
  43.     Item    (".",                   Keys("."))
  44.     Item    ("No Change",           Keys("N"))
  45.     Item    ("Relative",            Keys("R"))
  46.     Item    ("Calc Menu",           Menu(Calc), Button(LBC))
  47.     Item    ("File Menu",           Menu(File), Button(LBF))
  48.     Item    ("More Menus",          Menu(More))
  49.     Item    ("Edit",                Keys("/E"))
  50.     Item    ("Blank",               Keys("/B" [Enter]))
  51.     Item    ("Delete",              Menu(Delete))
  52.     Item    ("Insert",              Menu(Insert))
  53.     Item    ("Change Window",       Keys(";"))
  54.     Item    ("Home",                Keys([Home]))
  55. )
  56.  
  57. Calc: Menu
  58. (
  59.     Title    ("Calc")
  60.     Item    ("@Sum(",               Keys("@Sum("))
  61.     Item    (".",                   Keys("."))
  62.     Item    (")",                   Keys(")"))
  63.     Item    ("(",                   Keys("("))
  64.     Item    ("+",                   Keys("+"))
  65.     Item    ("-",                   Keys("-"))
  66.     Item    ("*",                   Keys("*"))
  67.     Item    ("/",                   Keys("/"))
  68.     Item    ("^",                   Keys("^"))
  69.     Item    ("Edit",                Keys("/E"))
  70.     Item    ("Recalc",              Keys("!"))
  71.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  72. )
  73.  
  74. File: Menu
  75. (
  76.     Title    ("File")
  77.     Item    ("Load File",           Keys("/SL"))
  78.     Item    ("Save File",           Keys("/SS"))
  79.     Item    ("Load DIF File",       Keys("/S#L"))
  80.     Item    ("Save DIF File",       Keys("/S#S"))
  81.     Item    ("Delete File",         Keys("/SD"))
  82.     Item    ("Print to Printer",    Keys("/PP"))
  83.     Item    ("Print to File",       Keys("/PF"))
  84.     Item    ("Clear",               Keys("/C"))
  85.     Item    ("Yes",                 Keys("Y"))
  86.     Item    ("Quit",                Keys("/SQ"))
  87.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  88. )
  89.  
  90. More: Menu
  91. (
  92.     Title    ("More")
  93.     Item    ("Move",                Keys("/M"))
  94.     Item    ("Repeating Label",     Keys("/-"))
  95.     Item    ("Window Menu",         Menu(Window))
  96.     Item    ("Title Menu",          Menu(Title))
  97.     Item    ("Format Menu",         Menu(Format))
  98.     Item    ("Global Menu",         Menu(Global))
  99. )
  100.  
  101. Window: Menu
  102. (
  103.     Title    ("Window")
  104.     Item    ("Horizontal",          Keys("/WH"))
  105.     Item    ("Vertical",            Keys("/WV"))
  106.     Item    ("One Window",          Keys("/W1"))
  107.     Item    ("Synchronized",        Keys("/WS"))
  108.     Item    ("Unsynchronized",      Keys("/WU"))
  109. )
  110.  
  111.  
  112. Title: Menu
  113. (
  114.     Title    ("Title")
  115.     Item    ("Horizontal",          Keys("/TH"))
  116.     Item    ("Vertical",            Keys("/TV"))
  117.     Item    ("Both",                Keys("/TB"))
  118.     Item    ("No Title",            Keys("/TN"))
  119. )
  120.  
  121. Format: Menu
  122. (
  123.     Title    ("Format")
  124.     Item    ("General",             Keys("/FG"))
  125.     Item    ("Integer",             Keys("/FI"))
  126.     Item    ("Currency",            Keys("/F$"))
  127.     Item    ("Left",                Keys("/FL"))
  128.     Item    ("Right",               Keys("/FR"))
  129.     Item    ("Graph",               Keys("/F*"))
  130.     Item    ("Default",             Keys("/FD"))
  131. )
  132.  
  133. Global: Menu
  134. (
  135.     Title    ("Global")
  136.     Item    ("Column Width",        Keys("/GC"))
  137.     Item    ("Recalc Auto",         Keys("/GRA"))
  138.     Item    ("Recalc Manual",       Keys("/GRM"))
  139.     Item    ("Recalc Order Columns",Keys("/GOC"))
  140.     Item    ("Recalc Order Rows",   Keys("/GOR"))
  141.     Item    ("Format General",      Keys("/GFG"))
  142.     Item    ("Format Integer",      Keys("/GFI"))
  143.     Item    ("Format Currency",     Keys("/GF$"))
  144.     Item    ("Format Left",         Keys("/GFL"))
  145.     Item    ("Format Right",        Keys("/GFR"))
  146.     Item    ("Format Graph",        Keys("/GF*"))
  147.     Item    ("Format Default",      Keys("/GFD"))
  148. )
  149.  
  150. Insert: Menu
  151. (
  152.     Title    ("Insert")
  153.     Item    ("Row",                 Keys("/IR"))
  154.     Item    ("Column",              Keys("/IC"))
  155. )
  156.  
  157. Delete: Menu
  158. (
  159.     Title    ("Delete")
  160.     Item    ("Row",                 Keys("/DR"))
  161.     Item    ("Column",              Keys("/DC"))
  162. )
  163.  
  164.  
  165. ;
  166. ;    Mouse Definition
  167. ;
  168. Mouse
  169. (
  170.     Left    (LBM)
  171.     Middle    (MB)
  172.     LeftRight(MB)
  173.     Right    (RB)
  174.     Cursor    (ArrowKeys)
  175. )
  176.